home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d11 / nansiutl.arc / VIEW.DOC < prev   
Text File  |  1991-04-03  |  1KB  |  36 lines

  1. view - read-only text display program
  2.  
  3. Usage: view textfile
  4.  
  5. View is a simple program to let you scroll back and forth thru a text
  6. file and search for strings.  It requires NANSI.SYS or equivalent to
  7. be loaded in CONFIG.SYS.
  8.  
  9. It understands the following commands, which were chosen to make users
  10. of the Unix text editor 'vi' comfortable:
  11.     q        quit
  12.     /        search forward
  13.     ?        search backwards
  14.     n        find next
  15.     N        find next in opposite direction
  16.     j or arrow    move down
  17.     k or arrow    move up
  18.     h or arrow    move left
  19.     l or arrow    move right
  20.     ^F or PageDown    move one page down
  21.     ^B or PageUp    move one page up
  22. It expands tabs on 8 column boundaries.
  23.  
  24. Technical details:
  25. It was written in 1985 in 8086 assembly language, and uses MS-DOS function
  26. calls for all input and output (no direct writing to video screen).  Because
  27. it batches its output, screen updates are nearly instantaneous when used with
  28. NANSI.SYS.  View.com uses VT100 style insert and delete line sequences to
  29. avoid repainting the whole screen when scrolling by just one line.
  30.  
  31. The source is available free by request via Internet e-mail from
  32. dank@blacks.jpl.nasa.gov or dank@moc.jpl.nasa.gov.  (Internet e-mail
  33. is available at universities and research institutions.  Many
  34. commercial e-mail systems such as Compuserve have gateways that allow
  35. you to send e-mail to Internet addresses.)
  36.